all: main
main: struct_copy.o
	gcc -o struct_copy struct_copy.o
clean:
	rm -rf main *.o
